home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000380_news@columbia.edu _Thu Jun 15 14:39:19 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA29238
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 15 Jun 2000 14:39:19 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA06683
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 15 Jun 2000 14:39:18 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA25939
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 15 Jun 2000 14:12:41 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jhill@sawmillmanager.com (John Hill)
  13. Subject: Spaces consolidated in echo command
  14. Organization: Logical Systems, Inc.
  15. Message-ID: <39491ba4.9646209@news-server.maine.rr.com>
  16. Date: Thu, 15 Jun 2000 18:11:35 GMT
  17. To: kermit.misc@columbia.edu
  18.  
  19. I am using MS-DOS Kermit v3.15 to transfer files from a handheld
  20. computer to a PC.  As part of this routine I use the echo command to
  21. display box drawings, two verticle line in particular, with many
  22. spaces between them.  It appears as though some of these spaces are
  23. being discarded.  Any help would be appreciated.  Thanks.
  24. ears as though some of these spaces are
  25. : being discarded.  Any help would be appreciated.  Thanks.
  26. :
  27. ECHO by itself should cause a blank line to be displayed.
  28.  
  29. If given some text to echo, ECHO strips leading and trailing blanks
  30. and then displays the text.  The following commands have the same effect:
  31.  
  32.   echo this is some text
  33.   echo          this is some text
  34.  
  35. To have leading and trailing blanks preserved, enclose the text in
  36. curly braces:
  37.  
  38.   echo {   this is some text  }
  39.  
  40. - Frank